home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PDragSelect.h < prev    next >
C/C++ Source or Header  |  1996-07-15  |  742b  |  41 lines

  1. /*
  2.  *--- PDragSelect.h -------------------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, July 19, 1996 @ 11:31 PM by Paul Ferguson.
  5.  *
  6.  * Description: This implements a drag select command.
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PDragSelect__
  10. #define __PDragSelect__
  11.  
  12. class PDragSelect
  13. {
  14.  
  15. public:
  16.  
  17.     PDragSelect(long xLeft, long yTop, long xRight, long yBottom);
  18.  
  19. private:
  20.  
  21.     PDragSelect();
  22. };
  23.  
  24. class PDragSelectExtend
  25. {
  26.  
  27. public:
  28.  
  29.     PDragSelectExtend(long xLeft, long yTop, long xRight, long yBottom);
  30.  
  31. private:
  32.  
  33.     PDragSelectExtend();
  34. };
  35.  
  36.  
  37.  
  38. #endif
  39.  
  40. // end of PDragSelect.h
  41.